home *** CD-ROM | disk | FTP | other *** search
-
-
-
- Using the XREF program with Telix
-
- Written By: David Postler
-
- While making the Round of Board I check in on I found a Program
- called XREF. This is a Public domain program that will create a
- variable cross reference list. In addition is also allows for
- configuration to many different languages. It seemed easy so I
- tried to make up a file for Telix salt scripts. I merely read in
- the Salt manual and massaged the text to fit the proper
- configuration. Lo and behold it worked. After asking permission
- from Exis I have posted a configuration file for salt scripts.
- In addition I have written a batch file to run the Cross
- reference. To use you simply type: xf <file name> and press
- enter. DO NOT enter the file extension. The script you are
- cross referencing must have an extension of "SLT".
-
-
- Notes
-
- Excerpts from the Telix SALT manual copyright 1990 by Exis Inc.
- Used by permission. Thanks Folks.
-
- I will welcome any suggestions or comments and will try to answer
- questions. You can find me on the FidoNet Telix echo or
- occasionally(once/month) on the Telix BBS.
-
-
- Here is the Batch file to enter:
-
- @echo off
- rem file name xf.bat
- rem Public Domain written by David Postler September 25, 1990
- rem This program will the XREF program with a Telix Script
- rem and will store the results in a file called with the
- rem script file name and then XF as the extension.
- rem It will the then do a directory display for your information
- rem Written and tested on a Toshiba 1200HB and DOS 3.3
- rem --------------------------------------------------------
- rem if no file provided then print help info and quit
- if not "%1"=="" goto :start
- echo Enter XF {filename} and no extension to run
- goto :end
- rem --------------------------------------------------------
- :start
- xref %1.slt -ltlx > %1.xf
- dir %1.*
- echo File is referenced.
-
-
-